Kth largest element in a stream¶
Time: O(NLogK); Space: O(K); easy
Design a class to find the kth largest element in a stream.
Note that it is the kth largest element in the sorted order, not the kth distinct element.
Your KthLargest class will have a constructor which accepts an integer k and an integer array nums, which contains initial elements from the stream.
For each call to the method KthLargest.add(), return the element representing the kth largest element in the stream.
Example 1:
Input/Output: nums = [4,5,8,2], k = 3
kthLargest = KthLargest(k, nums)
kthLargest.add(3) # returns 4
kthLargest.add(5) # returns 5
kthLargest.add(10) # returns 5
kthLargest.add(9) # returns 8
kthLargest.add(4) # returns 8
Note:
You may assume that nums’ length ≥ k-1 and k ≥ 1.
[1]:
import heapq
class KthLargest(object):
def __init__(self, k, nums):
"""
:type k: int
:type nums: List[int]
"""
self.__k = k
self.__min_heap = []
for n in nums:
self.add(n)
def add(self, val):
"""
:type val: int
:rtype: int
"""
heapq.heappush(self.__min_heap, val)
if len(self.__min_heap) > self.__k:
heapq.heappop(self.__min_heap)
return self.__min_heap[0]
[2]:
nums = [4,5,8,2]
k = 3
kthLargest = KthLargest(k, nums)
assert kthLargest.add(3) == 4
assert kthLargest.add(5) == 5
assert kthLargest.add(10) == 5
assert kthLargest.add(9) == 8
assert kthLargest.add(4) == 8